This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1'use client'; 2 3import CollectionsContainerError from '@/features/collections/containers/collectionsContainer/Error.CollectionsContainer'; 4import { Container } from '@mantine/core'; 5 6export default function Error() { 7 return ( 8 <Container p="xs" size="xl"> 9 <CollectionsContainerError /> 10 </Container> 11 ); 12}